home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / sd-26.zip / paths.h < prev    next >
C/C++ Source or Header  |  1992-09-09  |  1KB  |  35 lines

  1. /* SD -- square dance caller's helper.
  2.  
  3.     Copyright (C) 1990  William B. Ackerman.
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 1, or (at your option)
  8.     any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19.     This is version 1.22. */
  20.  
  21. /* The Sd program reads this binary file for its calls database */
  22. #ifndef DATABASE_FILENAME
  23. #define DATABASE_FILENAME "sd_calls.dat"
  24. #endif
  25.  
  26. /* The source form of the calls database.  The mkcalls program compiles it. */
  27. #ifndef CALLS_FILENAME
  28. #define CALLS_FILENAME "sd_calls.txt"
  29. #endif
  30.  
  31. /* The output filename prefix.  ".level" is added to the name. */
  32. #ifndef SEQUENCE_FILENAME
  33. #define SEQUENCE_FILENAME "sequence"
  34. #endif
  35.